home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / readlink.c < prev    next >
C/C++ Source or Header  |  1990-03-23  |  2KB  |  67 lines

  1. /* 
  2.  * readlink.c --
  3.  *
  4.  *    Procedure to map from Unix readlink system call to Sprite.
  5.  *
  6.  * Copyright (C) 1986 Regents of the University of California
  7.  * All rights reserved.
  8.  */
  9.  
  10. #ifndef lint
  11. static char rcsid[] = "$Header: /sprite/src/lib/c/unixSyscall/RCS/readlink.c,v 1.4 90/03/23 10:29:33 douglis Exp $ SPRITE (Berkeley)";
  12. #endif not lint
  13.  
  14. #include "sprite.h"
  15. #include "fs.h"
  16. #include "compatInt.h"
  17.  
  18.  
  19. /*
  20.  *----------------------------------------------------------------------
  21.  *
  22.  * readlink --
  23.  *
  24.  *    Procedure to map from Unix readlink system call to Sprite Fs_ReadLink.
  25.  *
  26.  * Results:
  27.  *    UNIX_ERROR is returned upon error, with the actual error code
  28.  *    stored in errno.  Upon success, the number of bytes actually
  29.  *    read (ie. the length of the link's target pathname) is returned.
  30.  *    
  31.  *
  32.  * Side effects:
  33.  *    The buffer is filled with the number of bytes indicated by
  34.  *    the length parameter.  
  35.  *
  36.  *----------------------------------------------------------------------
  37.  */
  38.  
  39. int
  40. readlink(link, buffer, numBytes)
  41.     char *link;            /* name of link file to read */
  42.     char *buffer;        /* pointer to buffer area */
  43.     int numBytes;        /* number of bytes to read */
  44. {
  45.     ReturnStatus status;    /* result returned by Fs_Read */
  46.     int amountRead;        /* place to hold number of bytes read */
  47.  
  48.     status = Fs_ReadLink(link, numBytes, buffer, &amountRead);
  49.     if (status != SUCCESS) {
  50.     errno = Compat_MapCode(status);
  51.     return(UNIX_ERROR);
  52.     } else {
  53.     /*
  54.      * Sprite's Fs_ReadLink includes the terminating null character
  55.      * in the character count return (amountRead) while Unix doesn't.
  56.      *
  57.      * ** NOTE ** this check can go away  once all hosts are running
  58.      * kernels that fix this before returning the value.
  59.      */
  60.     if (buffer[amountRead-1] == '\0') {
  61.         amountRead--;
  62.     }
  63.     
  64.     return(amountRead);
  65.     }
  66. }
  67.